home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 608 b | 33 lines |
- # For hwp on MGR terminals:
- #TARGET= mhwp
- # For hwp on ASCII terminals:
- TARGET= hwp
- # For hwp in xterm windows:
- #TARGET= xhwp
-
- OBJS= hwp.o
-
- LIBS= -lcurses
-
- # For Coherent 4.2 with lp spooler:
- CFLAGS= -O -DSPOOLER=\"lp\"
- # For Coherent 4.0 with lpr spooler:
- #CFLAGS= -O -DOLD_ACCESS
- # For Coherent 4.2 with lpr spooler:
- #CFLAGS= -O
- # For Coherent 4.2 with lp spooler and MGR:
- #CFLAGS= -O -DSPOOLER=\"lp\" -DMGR
- # For Coherent 4.2 with lp spooler and X11:
- #CFLAGS= -O -DSPOOLER=\"lp\" -DX11
-
- hwp: $(OBJS)
- cc -o $(TARGET) $(OBJS) $(LIBS)
-
- all: $(TARGET)
-
- clean:
- rm -f $(OBJS)
-
- clobber: clean
- rm -f $(TARGET)
-